From ea66464712cdb7200087bd4354ba4329200ddc96 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Sun, 1 Jul 2007 22:21:58 +0100 Subject: [PATCH] ACM: Fix a problem with the boot option parser. Signed-off-by: Stefan Berger --- xen/acm/acm_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/acm/acm_core.c b/xen/acm/acm_core.c index 5cbff94bad..7203954909 100644 --- a/xen/acm/acm_core.c +++ b/xen/acm/acm_core.c @@ -89,7 +89,7 @@ static void __init set_dom0_ssidref(const char *val) if (hi < ACM_MAX_NUM_TYPES && hi >= 1) dom0_ste_ssidref = hi; for (i = 0; i < sizeof(polname); i++) { - polname[i] = c[7+i]; + polname[i] = c[5+i]; if (polname[i] == '\0' || polname[i] == '\t' || polname[i] == '\n' || polname[i] == ' ' || polname[i] == ':') { -- 2.30.2